home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000411_news@newsmaster….columbia.edu _Thu Apr 9 09:29:55 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id JAA29300
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Thu, 9 Apr 1998 09:29:55 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id JAA11232
  7.     for kermit.misc@watsun; Thu, 9 Apr 1998 09:29:55 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: timeout on k95
  12. Date: 9 Apr 1998 13:29:52 GMT
  13. Organization: Columbia University
  14. Lines: 27
  15. Message-ID: <6giigg$9ot$1@apakabar.cc.columbia.edu>
  16. References: <6ggtct$7me$1@news.ncal.verio.com>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:8614
  19.  
  20. In article <6ggtct$7me$1@news.ncal.verio.com>, den <dirvine@psln.com> wrote:
  21. : I am using K95 as a terminal emulatior (vt320) to a VMS 7.1 Alpha machine.
  22. : I have things working pretty well except for a time out problem.   Every 20
  23. : seconds, if I don't touch a key, Kermit logs me out of the system.
  24. :
  25. Kermit doesn't log you out of anything.  Your system logs you out because
  26. you were idle.  Many systems have this property.
  27.  
  28. : It is
  29. : not the Alpha machine logging me out because I can use another term
  30. : emulation program and it does not have this problem.
  31. :
  32. Kermit is not logging you out, really.  Maybe the other program has been
  33. configured to send something periodically when you are idle.  You can
  34. configure K95 to do that too.
  35.  
  36. : I have read "Using C
  37. : Kermit" and the Kermit 95 booklet and have tried everything I can find
  38. : having to do with timing, but to no avail.
  39. Use K95's SET TERMINAL IDLE <seconds> <chars-to-send>, for example:
  40.  
  41.   SET TERMINAL IDLE 600 { }
  42.  
  43. This sends a space if you have not typed anything for 10 minutes.
  44.  
  45. - Frank